home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / AmiSlate1_2.lha / AmiSlate / ExampleRexx / remote.rexx < prev    next >
OS/2 REXX Batch file  |  1995-05-24  |  378b  |  12 lines

  1. /* A program demonstrating how to use RemoteEasyRequest to ask a 
  2.    question of the Remote AmiSlate user. */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. RemoteEasyRequest '"'||"Remote Request"||'"' '"'||"Please Pick a number"||'"' '1|2|3|4|5|0'
  9. waitevent stem l.  message
  10. EasyRequest Answer '"'||"The remote user picked: "|| l.message||'"' Okay
  11.  
  12.